home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / ListChooserEventListener.java < prev    next >
Text File  |  1998-09-08  |  747b  |  18 lines

  1. // Copyright (c) 1998 by Symantec Corporation. All Rights Reserved.
  2. ///////////////////////////////////////////////////////////////////////////
  3. // $Header: /cvs/data/vector/green/java/src/com/symantec/itools/swing/ListChooserEventListener.java,v 1.1 1998/09/09 04:27:28 adiacon Exp $
  4. //
  5. // File:
  6. // Description: Describes the interface for JListChooserEvent
  7. // Author: Adrian Diaconescu
  8. ///////////////////////////////////////////////////////////////////////////
  9.  
  10. // package statement here
  11. package com.symantec.itools.swing;
  12.  
  13. public interface ListChooserEventListener extends java.util.EventListener {
  14.     /**
  15.      * This method should be fired before the data changes.
  16.      */
  17.     public void handleEvent( ListChooserEvent e );
  18. }